home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / Jotto2.so Folder / Jotto ][ ƒ / Wipes, etc. / Diagonal wipe.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-02  |  2.2 KB  |  70 lines  |  [TEXT/KAHL]

  1. /**********************************************************************\
  2.  
  3. File:        Diagonal wipe.c
  4.  
  5. Purpose:    Graphic effect from offscreen bitmap to main window (on
  6.             screen).  See comments below for more description.
  7.  
  8.  
  9. Jotto ][ -=- a simple word game, revisited
  10. Copyright (C) 1993 Mark Pilgrim
  11.  
  12. This program is free software; you can redistribute it and/or modify
  13. it under the terms of the GNU General Public License as published by
  14. the Free Software Foundation; either version 2 of the License, or
  15. (at your option) any later version.
  16.  
  17. This program is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. GNU General Public License for more details.
  21.  
  22. You should have received a copy of the GNU General Public License
  23. along with this program in a file named "GNU General Public License".
  24. If not, write to the Free Software Foundation, 675 Mass Ave,
  25. Cambridge, MA 02139, USA.
  26.  
  27. \**********************************************************************/
  28.  
  29. #include "msg timing.h"
  30. #include "wipe dispatch.h"
  31.  
  32. #define BoxSize 13
  33. #define CorrectTime 2
  34.  
  35. /* If you make a long enough region starting at the bottomright corner and
  36.    making a strip up and right of <BoxSize> width, all you have to do is move
  37.    the region left until the entire screen is filled.  Dave thinks ideas like
  38.    this should be taken out and shot, but it works. */
  39.    
  40. void DiagonalWipe(GrafPtr sourceGrafPtr, GrafPtr destGrafPtr, short theWindowHeight, short theWindowWidth)
  41. {
  42.     short            counter,maxmax;
  43.     Rect        source;
  44.     RgnHandle    archie;
  45.     
  46.     maxmax=theWindowWidth+BoxSize;
  47.     archie=NewRgn();
  48.     OpenRgn();
  49.         MoveTo(theWindowWidth+BoxSize,theWindowHeight+BoxSize);
  50.         Line(0,BoxSize);
  51.         Line(-maxmax,maxmax);
  52.         Line(-BoxSize,0);
  53.         Line(maxmax,-maxmax);
  54.     CloseRgn(archie);
  55.     source.top=source.left=0;
  56.     source.bottom=theWindowHeight;
  57.     source.right=theWindowWidth;
  58.  
  59.     /* the only tricky part to this code is the starting param for counter */
  60.     for (counter=2+(theWindowWidth+theWindowHeight)/BoxSize; counter>=0; counter--)
  61.     {
  62.         StartTiming();
  63.         OffsetRgn(archie,0,-BoxSize);
  64.         CopyBits(&(sourceGrafPtr->portBits),&(destGrafPtr->portBits),&source,&source,
  65.             0,archie);
  66.         TimeCorrection(CorrectTime);
  67.     }
  68.     DisposeRgn(archie);
  69. }
  70.